home *** CD-ROM | disk | FTP | other *** search
/ Ian & Stuart's Australian Mac 1993 September / September 93.iso / Archives / Games / Board / BathroomTile / BathroomTile.rsrc / STR#_5000.txt < prev    next >
Text File  |  1993-08-30  |  1KB  |  139 lines

  1. repeat with...=repeat with | = xxx to xxx
  2.  
  3. end repeat
  4.  
  5. repeat while...=repeat while |
  6.  
  7. end repeat
  8.  
  9. repeat until..=repeat until |
  10.  
  11. end repeat
  12.  
  13. repeat for...=repeat for | times
  14.  
  15. end repeat
  16.  
  17. repeat ...=repeat
  18. |
  19. end repeat
  20.  
  21. on startUp...=on startUp
  22. |
  23. end startUp
  24.  
  25. on openWindow...=on openWindow
  26. |
  27. end openWindow
  28.  
  29. on openProject...=on openProject
  30. |
  31. end openProject
  32.  
  33. on openCard...=on openCard
  34. |
  35. end openCard
  36.  
  37. on openBackground...=on openBackground
  38. |
  39. end openBackground
  40.  
  41. on mouseUp...=on mouseUp
  42. |
  43. end mouseUp
  44.  
  45. on mouseStillDown=on mouseStillDown
  46. |
  47. end mouseStillDown
  48.  
  49. on mouseDown...=on mouseDown
  50. |
  51. end mouseDown
  52.  
  53. on idle...=on idle
  54. |
  55. end idle
  56.  
  57. on closeWindow...=on closeWindow
  58. |
  59. end closeWindow
  60.  
  61. on closeProject...=on closeProject
  62. |
  63. end closeProject
  64.  
  65. on closeCard...=on closeCard
  66. |
  67. end closeCard
  68.  
  69. on closeBackground...=on closeBackground
  70. |
  71. end closeBackground
  72.  
  73. on ...=on xxx
  74. |
  75. end xxx
  76.  
  77. lockscreen...=set lockscreen to true
  78. |
  79. set lockscreen to false
  80.  
  81. lockmessages...=set lockmessages to true
  82. |
  83. set lockmessages to false
  84.  
  85. lockmenus...=set lockmenus to true
  86. |
  87. set lockmenus to false
  88.  
  89. if...then=if | then xxx 
  90.  
  91. if...then...end=if | then
  92. xxx
  93. end if
  94.  
  95. if...then...else=if | then
  96. xxx
  97. else xxx
  98.  
  99. if...then...else...end=if | then
  100. xxx
  101. else
  102. xxx
  103. end if
  104.  
  105. function...=function xxx
  106. |
  107. end xxx
  108.  
  109. --
  110.  
  111. then
  112.  
  113. send
  114.  
  115. return
  116.  
  117. repeat
  118.  
  119. pass
  120.  
  121. on
  122.  
  123. next
  124.  
  125. if
  126.  
  127. global
  128.  
  129. function
  130.  
  131. exit
  132.  
  133. end
  134.  
  135. else
  136.  
  137. do
  138.  
  139.